home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / run_feature_1.e < prev    next >
Text File  |  2000-03-25  |  4KB  |  175 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class RUN_FEATURE_1
  17.  
  18. inherit RUN_FEATURE;
  19.  
  20. creation make
  21.  
  22. feature
  23.  
  24.    base_feature: CST_ATT;
  25.  
  26.    value: EXPRESSION;
  27.  
  28.    result_type: TYPE;
  29.  
  30.    is_deferred: BOOLEAN is false;
  31.  
  32.    is_pre_computable: BOOLEAN is true;
  33.  
  34.    can_be_dropped: BOOLEAN is true;
  35.  
  36.    is_once_procedure: BOOLEAN is false;
  37.  
  38.    is_once_function: BOOLEAN is false;
  39.  
  40.    arguments: FORMAL_ARG_LIST is
  41.       do
  42.       end;
  43.  
  44.    require_assertion: RUN_REQUIRE is
  45.       do
  46.       end;
  47.  
  48.    local_vars: LOCAL_VAR_LIST is
  49.       do
  50.       end;
  51.  
  52.    routine_body: COMPOUND is
  53.       do
  54.       end;
  55.  
  56.    ensure_assertion: E_ENSURE is
  57.       do
  58.       end;
  59.  
  60.    rescue_compound: COMPOUND is
  61.       do
  62.       end;
  63.  
  64.    is_static: BOOLEAN is
  65.       do
  66.          Result := value.is_static;
  67.       end;
  68.  
  69.    static_value_mem: INTEGER is
  70.       do
  71.          Result := value.static_value;
  72.       end;
  73.  
  74.    afd_check is
  75.       do
  76.       end;
  77.  
  78.    mapping_c is
  79.       local
  80.          real_constant: REAL_CONSTANT;
  81.       do
  82.          if result_type.is_double then
  83.             real_constant ?= value;
  84.             check
  85.                real_constant /= Void;
  86.             end;
  87.             cpp.put_string(real_constant.to_string);
  88.          else
  89.             value.compile_to_c;
  90.          end;
  91.       end;
  92.  
  93.    c_define is
  94.       do
  95.       end;
  96.  
  97. feature {ADDRESS_OF_POOL}
  98.  
  99.    address_of_c_define(caller: ADDRESS_OF) is
  100.       do
  101.          eh.add_position(caller.start_position);
  102.          eh.add_position(start_position);
  103.          fatal_error("Cannot access address of a constant (VZAA).");
  104.       end;
  105.  
  106. feature {ADDRESS_OF}
  107.  
  108.    address_of_c_mapping is
  109.       do
  110.       end;
  111.  
  112. feature {CALL_PROC_CALL}
  113.  
  114.    collect_c_tmp is
  115.       do
  116.       end;
  117.  
  118. feature {RUN_FEATURE}
  119.  
  120.    compute_use_current is
  121.       do
  122.          use_current_state := ucs_false;
  123.       end;
  124.  
  125.    jvm_field_or_method is
  126.       do
  127.       end;
  128.  
  129. feature
  130.  
  131.    mapping_jvm is
  132.       local
  133.          space: INTEGER;
  134.       do
  135.          jvm.drop_target;
  136.          space := value.compile_to_jvm_into(result_type);
  137.       end;
  138.  
  139. feature {JVM}
  140.  
  141.    jvm_define is
  142.       do
  143.       end;
  144.  
  145. feature {NONE}
  146.  
  147.    initialize is
  148.       local
  149.          i: INTEGER;
  150.          bc: BASE_CLASS;
  151.          original_name: FEATURE_NAME;
  152.       do
  153.          result_type := base_feature.result_type;
  154.          result_type := result_type.to_runnable(current_type);
  155.          bc := current_type.base_class;
  156.          original_name := bc.original_name(base_feature.base_class,name);
  157.          i := base_feature.names.index_of(original_name);
  158.          check i > 0 end;
  159.          value := base_feature.value(i);
  160.          value := value.to_runnable(current_type);
  161.       end;
  162.  
  163.    compute_stupid_switch(r: ARRAY[RUN_CLASS]) is
  164.       do
  165.          stupid_switch_state := ucs_true;
  166.       end;
  167.  
  168.    update_tmp_jvm_descriptor is
  169.       do
  170.       end;
  171.  
  172.    stupid_switch_comment: STRING is "SSCARF1";
  173.  
  174. end -- RUN_FEATURE_1
  175.